ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ChartAxis<T> Class / LabelAlign Property






In This Topic
    LabelAlign Property (ChartAxis<T>)
    In This Topic
    Gets or sets the label alignment.
    Syntax
    'Declaration
     
    
    Public Property LabelAlign As System.String
    'Usage
     
    
    Dim instance As ChartAxis(Of T)
    Dim value As System.String
     
    instance.LabelAlign = value
     
    value = instance.LabelAlign
    public System.string LabelAlign {get; set;}
    public read-write property LabelAlign: System.String; 
    public function get,set LabelAlign : System.String
    public: __property System.string* get_LabelAlign();
    public: __property void set_LabelAlign( 
       System.string* value
    );
    public:
    property System.String^ LabelAlign {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    By default the labels are centered. The supported values are 'left' and 'right' for x-axis and 'top' and 'bottom' for y-axis.
    See Also